diff --git a/Cargo.lock b/Cargo.lock index 73556de..86b525d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,999 +1,1414 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "aho-corasick" -version = "0.7.6" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" dependencies = [ - "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr", ] [[package]] name = "ansi_term" -version = "0.11.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" dependencies = [ - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi", ] [[package]] -name = "async-macros" -version = "2.0.0" +name = "anstream" +version = "0.6.14" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b" dependencies = [ - "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "is_terminal_polyfill", + "utf8parse", ] [[package]] -name = "async-std" -version = "1.2.0" +name = "anstyle" +version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b" + +[[package]] +name = "anstyle-parse" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4" dependencies = [ - "async-macros 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "async-task 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-channel 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-io 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-timer 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "kv-log-macro 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", - "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", - "once_cell 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "pin-project-lite 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", - "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "utf8parse", ] [[package]] -name = "async-task" -version = "1.0.0" +name = "anstyle-query" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a64c907d4e79225ac72e2a354c9ce84d50ebb4586dee56c82b3ee73004f537f5" +dependencies = [ + "windows-sys 0.52.0", +] + +[[package]] +name = "anstyle-wincon" +version = "3.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19" +dependencies = [ + "anstyle", + "windows-sys 0.52.0", +] + +[[package]] +name = "async-channel" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" +dependencies = [ + "concurrent-queue", + "event-listener 2.5.3", + "futures-core", +] + +[[package]] +name = "async-channel" +version = "2.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" +dependencies = [ + "concurrent-queue", + "event-listener-strategy 0.5.2", + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "async-executor" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b10202063978b3351199d68f8b22c4e47e4b1b822f8d43fd862d5ea8c006b29a" +dependencies = [ + "async-task", + "concurrent-queue", + "fastrand 2.1.0", + "futures-lite 2.3.0", + "slab", +] + +[[package]] +name = "async-global-executor" +version = "2.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c" +dependencies = [ + "async-channel 2.3.1", + "async-executor", + "async-io 2.3.2", + "async-lock 3.3.0", + "blocking", + "futures-lite 2.3.0", + "once_cell", +] + +[[package]] +name = "async-io" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" +dependencies = [ + "async-lock 2.8.0", + "autocfg", + "cfg-if", + "concurrent-queue", + "futures-lite 1.13.0", + "log", + "parking", + "polling 2.8.0", + "rustix 0.37.27", + "slab", + "socket2", + "waker-fn", +] + +[[package]] +name = "async-io" +version = "2.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dcccb0f599cfa2f8ace422d3555572f47424da5648a4382a9dd0310ff8210884" dependencies = [ - "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "async-lock 3.3.0", + "cfg-if", + "concurrent-queue", + "futures-io", + "futures-lite 2.3.0", + "parking", + "polling 3.7.0", + "rustix 0.38.34", + "slab", + "tracing", + "windows-sys 0.52.0", ] +[[package]] +name = "async-lock" +version = "2.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" +dependencies = [ + "event-listener 2.5.3", +] + +[[package]] +name = "async-lock" +version = "3.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" +dependencies = [ + "event-listener 4.0.3", + "event-listener-strategy 0.4.0", + "pin-project-lite", +] + +[[package]] +name = "async-std" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d" +dependencies = [ + "async-channel 1.9.0", + "async-global-executor", + "async-io 1.13.0", + "async-lock 2.8.0", + "crossbeam-utils", + "futures-channel", + "futures-core", + "futures-io", + "futures-lite 1.13.0", + "gloo-timers", + "kv-log-macro", + "log", + "memchr", + "once_cell", + "pin-project-lite", + "pin-utils", + "slab", + "wasm-bindgen-futures", +] + +[[package]] +name = "async-task" +version = "4.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" + +[[package]] +name = "atomic-waker" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" + [[package]] name = "atty" -version = "0.2.13" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" dependencies = [ - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "hermit-abi 0.1.19", + "libc", + "winapi", ] [[package]] name = "autocfg" -version = "0.1.7" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" [[package]] name = "bindgen" -version = "0.52.0" +version = "0.69.4" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" dependencies = [ - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cexpr 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "clang-sys 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)", - "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", - "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "shlex 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "which 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 2.5.0", + "cexpr", + "clang-sys", + "itertools", + "lazy_static", + "lazycell", + "log", + "prettyplease", + "proc-macro2", + "quote", + "regex", + "rustc-hash", + "shlex", + "syn 2.0.64", + "which", ] [[package]] name = "bitflags" -version = "1.2.1" +version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] -name = "byteorder" -version = "1.3.2" +name = "bitflags" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" + +[[package]] +name = "blocking" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "495f7104e962b7356f0aeb34247aca1fe7d2e783b346582db7f2904cb5717e88" +dependencies = [ + "async-channel 2.3.1", + "async-lock 3.3.0", + "async-task", + "futures-io", + "futures-lite 2.3.0", + "piper", +] + +[[package]] +name = "bumpalo" +version = "3.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" [[package]] name = "cc" -version = "1.0.48" +version = "1.0.97" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "099a5357d84c4c61eb35fc8eafa9a79a902c2f76911e5747ced4e032edd8d9b4" [[package]] name = "cexpr" -version = "0.3.6" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" dependencies = [ - "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "nom", ] [[package]] name = "cfg-if" -version = "0.1.10" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clang-sys" -version = "0.28.1" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1" dependencies = [ - "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", - "libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "glob", + "libc", + "libloading", ] [[package]] name = "clap" -version = "2.33.0" +version = "2.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" dependencies = [ - "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ansi_term", + "atty", + "bitflags 1.3.2", + "strsim", + "textwrap", + "unicode-width", + "vec_map", ] [[package]] -name = "cloudabi" -version = "0.0.3" +name = "colorchoice" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" + +[[package]] +name = "concurrent-queue" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" dependencies = [ - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils", ] [[package]] -name = "crossbeam-channel" -version = "0.4.0" +name = "crossbeam-utils" +version = "0.8.19" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" + +[[package]] +name = "either" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b" + +[[package]] +name = "env_filter" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea" dependencies = [ - "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log", + "regex", ] [[package]] -name = "crossbeam-deque" -version = "0.7.2" +name = "env_logger" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38b35839ba51819680ba087cd351788c9a3c476841207e0b8cee0b04722343b9" dependencies = [ - "crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "anstream", + "anstyle", + "env_filter", + "humantime", + "log", ] [[package]] -name = "crossbeam-epoch" -version = "0.8.0" +name = "errno" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" dependencies = [ - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc", + "windows-sys 0.52.0", ] [[package]] -name = "crossbeam-utils" -version = "0.6.6" +name = "event-listener" +version = "2.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" + +[[package]] +name = "event-listener" +version = "4.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" dependencies = [ - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "concurrent-queue", + "parking", + "pin-project-lite", ] [[package]] -name = "crossbeam-utils" -version = "0.7.0" +name = "event-listener" +version = "5.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d9944b8ca13534cdfb2800775f8dd4902ff3fc75a50101466decadfdf322a24" dependencies = [ - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "concurrent-queue", + "parking", + "pin-project-lite", ] [[package]] -name = "env_logger" -version = "0.7.1" +name = "event-listener-strategy" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" dependencies = [ - "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "event-listener 4.0.3", + "pin-project-lite", ] [[package]] -name = "fuchsia-cprng" -version = "0.1.1" +name = "event-listener-strategy" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" +dependencies = [ + "event-listener 5.3.0", + "pin-project-lite", +] [[package]] -name = "fuchsia-zircon" -version = "0.3.3" +name = "fastrand" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" dependencies = [ - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "instant", ] [[package]] -name = "fuchsia-zircon-sys" -version = "0.3.3" +name = "fastrand" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" [[package]] name = "futures" -version = "0.3.1" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" dependencies = [ - "futures-channel 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-executor 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-io 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-sink 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-task 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-util 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", ] [[package]] name = "futures-channel" -version = "0.3.1" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" dependencies = [ - "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-sink 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core", + "futures-sink", ] [[package]] name = "futures-core" -version = "0.3.1" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" [[package]] name = "futures-executor" -version = "0.3.1" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" dependencies = [ - "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-task 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-util 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core", + "futures-task", + "futures-util", ] [[package]] name = "futures-io" -version = "0.3.1" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" + +[[package]] +name = "futures-lite" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" +dependencies = [ + "fastrand 1.9.0", + "futures-core", + "futures-io", + "memchr", + "parking", + "pin-project-lite", + "waker-fn", +] + +[[package]] +name = "futures-lite" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" +dependencies = [ + "fastrand 2.1.0", + "futures-core", + "futures-io", + "parking", + "pin-project-lite", +] [[package]] name = "futures-macro" -version = "0.3.1" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" dependencies = [ - "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2", + "quote", + "syn 2.0.64", ] [[package]] name = "futures-sink" -version = "0.3.1" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" [[package]] name = "futures-task" -version = "0.3.1" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" [[package]] -name = "futures-timer" -version = "2.0.2" +name = "futures-util" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" +dependencies = [ + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "pin-utils", + "slab", +] [[package]] -name = "futures-util" -version = "0.3.1" +name = "getrandom" +version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" dependencies = [ - "futures-channel 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-io 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-macro 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-sink 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-task 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-nested 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if", + "libc", + "wasi", ] [[package]] name = "glob" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" + +[[package]] +name = "gloo-timers" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" +dependencies = [ + "futures-channel", + "futures-core", + "js-sys", + "wasm-bindgen", +] [[package]] name = "heck" -version = "0.3.1" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" +dependencies = [ + "unicode-segmentation", +] + +[[package]] +name = "hermit-abi" +version = "0.1.19" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" dependencies = [ - "unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc", ] [[package]] name = "hermit-abi" -version = "0.1.3" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" + +[[package]] +name = "home" +version = "0.5.9" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" dependencies = [ - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", + "windows-sys 0.52.0", ] [[package]] name = "humantime" -version = "1.3.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" + +[[package]] +name = "instant" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" dependencies = [ - "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if", ] [[package]] -name = "iovec" -version = "0.1.4" +name = "io-lifetimes" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" dependencies = [ - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", + "hermit-abi 0.3.9", + "libc", + "windows-sys 0.48.0", ] [[package]] -name = "kernel32-sys" -version = "0.2.2" +name = "is_terminal_polyfill" +version = "1.70.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" + +[[package]] +name = "itertools" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" dependencies = [ - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "either", +] + +[[package]] +name = "js-sys" +version = "0.3.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" +dependencies = [ + "wasm-bindgen", ] [[package]] name = "kv-log-macro" -version = "1.0.4" +version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f" dependencies = [ - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "log", ] [[package]] name = "lazy_static" version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "lazycell" -version = "1.2.1" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "libc" -version = "0.2.66" +version = "0.2.155" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" [[package]] name = "libloading" -version = "0.5.2" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19" dependencies = [ - "cc 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if", + "windows-targets 0.52.5", ] +[[package]] +name = "linux-raw-sys" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" + +[[package]] +name = "linux-raw-sys" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" + [[package]] name = "log" -version = "0.4.8" +version = "0.4.21" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" dependencies = [ - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "value-bag", ] [[package]] name = "memchr" -version = "2.2.1" +version = "2.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" [[package]] -name = "memoffset" -version = "0.5.3" +name = "minimal-lexical" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", -] +checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] -name = "mio" -version = "0.6.21" +name = "nom" +version = "7.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" dependencies = [ - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", - "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr", + "minimal-lexical", ] [[package]] -name = "mio-uds" -version = "0.6.7" +name = "once_cell" +version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", -] +checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" [[package]] -name = "miow" -version = "0.2.1" +name = "parking" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", -] +checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" [[package]] -name = "net2" -version = "0.2.33" +name = "pin-project-lite" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] +checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" [[package]] -name = "nom" -version = "4.2.3" +name = "pin-utils" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", -] +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] -name = "num_cpus" -version = "1.11.1" +name = "piper" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "464db0c665917b13ebb5d453ccdec4add5658ee1adc7affc7677615356a8afaf" dependencies = [ - "hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", + "atomic-waker", + "fastrand 2.1.0", + "futures-io", ] [[package]] -name = "once_cell" -version = "1.2.0" +name = "pkg-config" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" [[package]] -name = "peeking_take_while" -version = "0.1.2" +name = "polling" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" +dependencies = [ + "autocfg", + "bitflags 1.3.2", + "cfg-if", + "concurrent-queue", + "libc", + "log", + "pin-project-lite", + "windows-sys 0.48.0", +] [[package]] -name = "pin-project-lite" -version = "0.1.1" +name = "polling" +version = "3.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "645493cf344456ef24219d02a768cf1fb92ddf8c92161679ae3d91b91a637be3" +dependencies = [ + "cfg-if", + "concurrent-queue", + "hermit-abi 0.3.9", + "pin-project-lite", + "rustix 0.38.34", + "tracing", + "windows-sys 0.52.0", +] [[package]] -name = "pin-utils" -version = "0.1.0-alpha.4" +name = "ppv-lite86" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" [[package]] -name = "pkg-config" -version = "0.3.17" +name = "prettyplease" +version = "0.2.20" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f12335488a2f3b0a83b14edad48dca9879ce89b2edd10e80237e4e852dd645e" +dependencies = [ + "proc-macro2", + "syn 2.0.64", +] [[package]] name = "proc-macro-error" -version = "0.2.6" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-error-attr", + "proc-macro2", + "quote", + "syn 1.0.109", + "version_check", ] [[package]] -name = "proc-macro-hack" -version = "0.5.11" +name = "proc-macro-error-attr" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2", + "quote", + "version_check", ] -[[package]] -name = "proc-macro-nested" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "proc-macro2" -version = "1.0.6" +version = "1.0.82" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ad3d49ab951a01fbaafe34f2ec74122942fe18a3f9814c3268f1bb72042131b" dependencies = [ - "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-ident", ] -[[package]] -name = "quick-error" -version = "1.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "quote" -version = "1.0.2" +version = "1.0.36" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2", ] [[package]] name = "rand" -version = "0.6.5" +version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" dependencies = [ - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "libc", + "rand_chacha", + "rand_core", ] [[package]] name = "rand_chacha" -version = "0.1.1" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" dependencies = [ - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ppv-lite86", + "rand_core", ] [[package]] name = "rand_core" -version = "0.3.1" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "getrandom", ] [[package]] -name = "rand_core" -version = "0.4.2" +name = "regex" +version = "1.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] [[package]] -name = "rand_hc" -version = "0.1.0" +name = "regex-automata" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" dependencies = [ - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "aho-corasick", + "memchr", + "regex-syntax", ] [[package]] -name = "rand_isaac" -version = "0.1.1" +name = "regex-syntax" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" + +[[package]] +name = "rustc-hash" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" + +[[package]] +name = "rustix" +version = "0.37.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2" dependencies = [ - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.3.2", + "errno", + "io-lifetimes", + "libc", + "linux-raw-sys 0.3.8", + "windows-sys 0.48.0", ] [[package]] -name = "rand_jitter" -version = "0.1.4" +name = "rustix" +version = "0.38.34" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" dependencies = [ - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 2.5.0", + "errno", + "libc", + "linux-raw-sys 0.4.14", + "windows-sys 0.52.0", ] [[package]] -name = "rand_os" -version = "0.1.3" +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[package]] +name = "slab" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" dependencies = [ - "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg", ] [[package]] -name = "rand_pcg" -version = "0.1.2" +name = "socket2" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" dependencies = [ - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libc", + "winapi", ] [[package]] -name = "rand_xorshift" -version = "0.1.1" +name = "strsim" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" + +[[package]] +name = "structopt" +version = "0.3.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10" dependencies = [ - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "clap", + "lazy_static", + "structopt-derive", ] [[package]] -name = "rdrand" -version = "0.4.0" +name = "structopt-derive" +version = "0.4.18" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0" dependencies = [ - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "heck", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] -name = "regex" -version = "1.3.1" +name = "syn" +version = "1.0.109" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" dependencies = [ - "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", - "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2", + "quote", + "unicode-ident", ] [[package]] -name = "regex-syntax" -version = "0.6.12" +name = "syn" +version = "2.0.64" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ad3dee41f36859875573074334c200d1add8e4a87bb37113ebd31d926b7b11f" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] [[package]] -name = "rustc-hash" -version = "1.0.1" +name = "textwrap" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" dependencies = [ - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-width", ] [[package]] -name = "rustc_version" -version = "0.2.3" +name = "tracing" +version = "0.1.40" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" dependencies = [ - "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "pin-project-lite", + "tracing-core", ] [[package]] -name = "scopeguard" -version = "1.0.0" +name = "tracing-core" +version = "0.1.32" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" [[package]] -name = "semver" -version = "0.9.0" +name = "unicode-ident" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", -] +checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" [[package]] -name = "semver-parser" -version = "0.7.0" +name = "unicode-segmentation" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" [[package]] -name = "shlex" -version = "0.1.1" +name = "unicode-width" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68f5e5f3158ecfd4b8ff6fe086db7c8467a2dfdac97fe420f2b7c4aa97af66d6" [[package]] -name = "slab" -version = "0.4.2" +name = "utf8parse" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] -name = "strsim" -version = "0.8.0" +name = "value-bag" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a84c137d37ab0142f0f2ddfe332651fdbf252e7b7dbb4e67b6c1f1b2e925101" [[package]] -name = "structopt" -version = "0.3.5" +name = "vec_map" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" + +[[package]] +name = "version_check" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" + +[[package]] +name = "waker-fn" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "317211a0dc0ceedd78fb2ca9a44aed3d7b9b26f81870d485c07122b4350673b7" + +[[package]] +name = "wasi" +version = "0.11.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" + +[[package]] +name = "wasm-bindgen" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" dependencies = [ - "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", - "structopt-derive 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if", + "wasm-bindgen-macro", ] [[package]] -name = "structopt-derive" -version = "0.3.5" +name = "wasm-bindgen-backend" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" dependencies = [ - "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)", + "bumpalo", + "log", + "once_cell", + "proc-macro2", + "quote", + "syn 2.0.64", + "wasm-bindgen-shared", ] [[package]] -name = "syn" -version = "1.0.11" +name = "wasm-bindgen-futures" +version = "0.4.42" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if", + "js-sys", + "wasm-bindgen", + "web-sys", ] [[package]] -name = "termcolor" -version = "1.0.5" +name = "wasm-bindgen-macro" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" dependencies = [ - "wincolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote", + "wasm-bindgen-macro-support", ] [[package]] -name = "textwrap" -version = "0.11.0" +name = "wasm-bindgen-macro-support" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" dependencies = [ - "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2", + "quote", + "syn 2.0.64", + "wasm-bindgen-backend", + "wasm-bindgen-shared", ] [[package]] -name = "thread_local" -version = "0.3.6" +name = "wasm-bindgen-shared" +version = "0.2.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" + +[[package]] +name = "web-sys" +version = "0.3.69" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" dependencies = [ - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys", + "wasm-bindgen", ] [[package]] -name = "unicode-segmentation" -version = "1.6.0" +name = "which" +version = "4.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" +dependencies = [ + "either", + "home", + "once_cell", + "rustix 0.38.34", +] [[package]] -name = "unicode-width" -version = "0.1.7" +name = "winapi" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] [[package]] -name = "unicode-xid" -version = "0.2.0" +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" [[package]] -name = "vec_map" -version = "0.8.1" +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] -name = "version_check" -version = "0.1.5" +name = "windows-sys" +version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets 0.48.5", +] [[package]] -name = "which" -version = "3.1.0" +name = "windows-sys" +version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" dependencies = [ - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", + "windows-targets 0.52.5", ] [[package]] -name = "winapi" -version = "0.2.8" +name = "windows-targets" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" +dependencies = [ + "windows_aarch64_gnullvm 0.48.5", + "windows_aarch64_msvc 0.48.5", + "windows_i686_gnu 0.48.5", + "windows_i686_msvc 0.48.5", + "windows_x86_64_gnu 0.48.5", + "windows_x86_64_gnullvm 0.48.5", + "windows_x86_64_msvc 0.48.5", +] [[package]] -name = "winapi" -version = "0.3.8" +name = "windows-targets" +version = "0.52.5" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" dependencies = [ - "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "windows_aarch64_gnullvm 0.52.5", + "windows_aarch64_msvc 0.52.5", + "windows_i686_gnu 0.52.5", + "windows_i686_gnullvm", + "windows_i686_msvc 0.52.5", + "windows_x86_64_gnu 0.52.5", + "windows_x86_64_gnullvm 0.52.5", + "windows_x86_64_msvc 0.52.5", ] [[package]] -name = "winapi-build" -version = "0.1.1" +name = "windows_aarch64_gnullvm" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" [[package]] -name = "winapi-i686-pc-windows-gnu" -version = "0.4.0" +name = "windows_aarch64_gnullvm" +version = "0.52.5" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" [[package]] -name = "winapi-util" -version = "0.1.2" +name = "windows_aarch64_msvc" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] +checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" [[package]] -name = "winapi-x86_64-pc-windows-gnu" -version = "0.4.0" +name = "windows_aarch64_msvc" +version = "0.52.5" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" [[package]] -name = "wincolor" -version = "1.0.2" +name = "windows_i686_gnu" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", -] +checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" [[package]] -name = "ws2_32-sys" -version = "0.2.1" +name = "windows_i686_gnu" +version = "0.52.5" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", -] +checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" + +[[package]] +name = "windows_i686_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" [[package]] name = "xdelta3" version = "0.1.5" dependencies = [ - "async-std 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "bindgen 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)", - "cc 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", - "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-io 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-util 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "structopt 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[metadata] -"checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d" -"checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" -"checksum async-macros 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "644a5a8de80f2085a1e7e57cd1544a2a7438f6e003c0790999bd43b92a77cdb2" -"checksum async-std 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "513ee3c49800679a319912340f5601afda9e72848d7dea3a48bab489e8c1a46f" -"checksum async-task 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "de6bd58f7b9cc49032559422595c81cbfcf04db2f2133592f70af19e258a1ced" -"checksum atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1803c647a3ec87095e7ae7acfca019e98de5ec9a7d01343f611cf3152ed71a90" -"checksum autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2" -"checksum bindgen 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f1c85344eb535a31b62f0af37be84441ba9e7f0f4111eb0530f43d15e513fe57" -"checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" -"checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5" -"checksum cc 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)" = "f52a465a666ca3d838ebbf08b241383421412fe7ebb463527bba275526d89f76" -"checksum cexpr 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "fce5b5fb86b0c57c20c834c1b412fd09c77c8a59b9473f86272709e78874cd1d" -"checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" -"checksum clang-sys 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)" = "81de550971c976f176130da4b2978d3b524eaa0fd9ac31f3ceb5ae1231fb4853" -"checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" -"checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" -"checksum crossbeam-channel 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "acec9a3b0b3559f15aee4f90746c4e5e293b701c0f7d3925d24e01645267b68c" -"checksum crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3aa945d63861bfe624b55d153a39684da1e8c0bc8fba932f7ee3a3c16cea3ca" -"checksum crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5064ebdbf05ce3cb95e45c8b086f72263f4166b29b97f6baff7ef7fe047b55ac" -"checksum crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "04973fa96e96579258a5091af6003abde64af786b860f18622b82e026cca60e6" -"checksum crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ce446db02cdc3165b94ae73111e570793400d0794e46125cc4056c81cbb039f4" -"checksum env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36" -"checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" -"checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" -"checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" -"checksum futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b6f16056ecbb57525ff698bb955162d0cd03bee84e6241c27ff75c08d8ca5987" -"checksum futures-channel 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fcae98ca17d102fd8a3603727b9259fcf7fa4239b603d2142926189bc8999b86" -"checksum futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "79564c427afefab1dfb3298535b21eda083ef7935b4f0ecbfcb121f0aec10866" -"checksum futures-executor 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1e274736563f686a837a0568b478bdabfeaec2dca794b5649b04e2fe1627c231" -"checksum futures-io 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e676577d229e70952ab25f3945795ba5b16d63ca794ca9d2c860e5595d20b5ff" -"checksum futures-macro 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "52e7c56c15537adb4f76d0b7a76ad131cb4d2f4f32d3b0bcabcbe1c7c5e87764" -"checksum futures-sink 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "171be33efae63c2d59e6dbba34186fe0d6394fb378069a76dfd80fdcffd43c16" -"checksum futures-task 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0bae52d6b29cf440e298856fec3965ee6fa71b06aa7495178615953fd669e5f9" -"checksum futures-timer 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a1de7508b218029b0f01662ed8f61b1c964b3ae99d6f25462d0f55a595109df6" -"checksum futures-util 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c0d66274fb76985d3c62c886d1da7ac4c0903a8c9f754e8fe0f35a6a6cc39e76" -"checksum glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" -"checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" -"checksum hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "307c3c9f937f38e3534b1d6447ecf090cafcc9744e4a6360e8b037b2cf5af120" -"checksum humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" -"checksum iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" -"checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" -"checksum kv-log-macro 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8c54d9f465d530a752e6ebdc217e081a7a614b48cb200f6f0aee21ba6bc9aabb" -"checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" -"checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" -"checksum libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)" = "d515b1f41455adea1313a4a2ac8a8a477634fbae63cc6100e3aebb207ce61558" -"checksum libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753" -"checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" -"checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e" -"checksum memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "75189eb85871ea5c2e2c15abbdd541185f63b408415e5051f5cac122d8c774b9" -"checksum mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)" = "302dec22bcf6bae6dfb69c647187f4b4d0fb6f535521f7bc022430ce8e12008f" -"checksum mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125" -"checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" -"checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" -"checksum nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6" -"checksum num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)" = "76dac5ed2a876980778b8b85f75a71b6cbf0db0b1232ee12f826bccb00d09d72" -"checksum once_cell 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "891f486f630e5c5a4916c7e16c4b24a53e78c860b646e9f8e005e4f16847bfed" -"checksum peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" -"checksum pin-project-lite 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f0af6cbca0e6e3ce8692ee19fb8d734b641899e07b68eb73e9bbbd32f1703991" -"checksum pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5894c618ce612a3fa23881b152b608bafb8c56cfc22f434a3ba3120b40f7b587" -"checksum pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)" = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677" -"checksum proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "aeccfe4d5d8ea175d5f0e4a2ad0637e0f4121d63bd99d356fb1f39ab2e7c6097" -"checksum proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)" = "ecd45702f76d6d3c75a80564378ae228a85f0b59d2f3ed43c91b4a69eb2ebfc5" -"checksum proc-macro-nested 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "369a6ed065f249a159e06c45752c780bda2fb53c995718f9e484d08daa9eb42e" -"checksum proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "9c9e470a8dc4aeae2dee2f335e8f533e2d4b347e1434e5671afc49b054592f27" -"checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" -"checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" -"checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" -"checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" -"checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" -"checksum rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" -"checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" -"checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" -"checksum rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" -"checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" -"checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" -"checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" -"checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" -"checksum regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dc220bd33bdce8f093101afe22a037b8eb0e5af33592e6a9caafff0d4cb81cbd" -"checksum regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "11a7e20d1cce64ef2fed88b66d347f88bd9babb82845b2b858f3edbf59a4f716" -"checksum rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7540fc8b0c49f096ee9c961cda096467dce8084bec6bdca2fc83895fd9b28cb8" -"checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" -"checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d" -"checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" -"checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" -"checksum shlex 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2" -"checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" -"checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" -"checksum structopt 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "30b3a3e93f5ad553c38b3301c8a0a0cec829a36783f6a0c467fc4bf553a5f5bf" -"checksum structopt-derive 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea692d40005b3ceba90a9fe7a78fa8d4b82b0ce627eebbffc329aab850f3410e" -"checksum syn 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)" = "dff0acdb207ae2fe6d5976617f887eb1e35a2ba52c13c7234c790960cdad9238" -"checksum termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "96d6098003bde162e4277c70665bd87c326f5a0c3f3fbfb285787fa482d54e6e" -"checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" -"checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" -"checksum unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0" -"checksum unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "caaa9d531767d1ff2150b9332433f32a24622147e5ebb1f26409d5da67afd479" -"checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" -"checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" -"checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" -"checksum which 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5475d47078209a02e60614f7ba5e645ef3ed60f771920ac1906d7c1cc65024c8" -"checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" -"checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6" -"checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" -"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" -"checksum winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9" -"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" -"checksum wincolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "96f5016b18804d24db43cebf3c77269e7569b8954a8464501c216cc5e070eaa9" -"checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" + "async-std", + "bindgen", + "cc", + "env_logger", + "futures", + "futures-io", + "futures-util", + "libc", + "log", + "pkg-config", + "rand", + "structopt", +] diff --git a/Cargo.toml b/Cargo.toml index 57b00c9..4fb71a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,20 +16,20 @@ maintenance = { status = "experimental" } [dependencies] futures-io = { version = "0.3", optional = true } -futures-util = { version = "0.3", optional = true } +futures-util = { version = "0.3", optional = true, features = ["io"] } libc = "0.2" log = "0.4" [dev-dependencies] async-std = "1.2" -env_logger = "0.7" +env_logger = "0.11" futures= "0.3" structopt = "0.3" [build-dependencies] cc = "1.0" -rand = "0.6" -bindgen = "0.52" +rand = "0.8" +bindgen = "0.69" pkg-config = { version = "0.3", optional = true } [features] diff --git a/build.rs b/build.rs index b8d022c..cea8390 100644 --- a/build.rs +++ b/build.rs @@ -60,9 +60,9 @@ fn main() { } let bindings = builder .header("xdelta3/xdelta3/xdelta3.h") - .parse_callbacks(Box::new(bindgen::CargoCallbacks)) - .whitelist_function("xd3_.*") - .whitelist_type("xd3_.*") + .parse_callbacks(Box::new(bindgen::CargoCallbacks::new())) + .allowlist_function("xd3_.*") + .allowlist_type("xd3_.*") .rustified_enum("xd3_.*") .generate() .expect("Unable to generate bindings"); diff --git a/head b/head new file mode 100644 index 0000000..0745966 --- /dev/null +++ b/head @@ -0,0 +1,188316 @@ +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] stream.winsize=8388608 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] read_size=185625 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GOTHEADER +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 diff --git a/out.sql b/out.sql new file mode 100644 index 0000000..e69de29 diff --git a/src/lib.rs b/src/lib.rs index 4f4b0c8..10a85a3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -128,3 +128,50 @@ pub fn decode(input: &[u8], src: &[u8]) -> Option> { } } } + +#[cfg(test)] +mod test { + use super::*; + + #[test] + fn roundtrip() { + let input = b"Hello, world! Hello, world!"; + let src = b"Hello, world!"; + + let patch = encode(input, src).unwrap(); + let output = decode(&patch, src).unwrap(); + + assert_eq!(output.as_slice(), input); + } + + #[test] + fn roundtrip_process() { + use std::io::*; + use stream::*; + + let src = b"Hello, world!".to_vec(); + let input = b"Hello, world! Hello, world!".to_vec(); + + let mut patch = Vec::new(); + process( + Xd3Config::new(), + ProcessMode::Encode, + input.as_slice(), + src.as_slice(), + &mut patch, + ) + .unwrap(); + + let mut output = Vec::new(); + process( + Xd3Config::new(), + ProcessMode::Decode, + patch.as_slice(), + src.as_slice(), + &mut output, + ) + .unwrap(); + + assert_eq!(output, input); + } +} diff --git a/src/rw.rs b/src/rw.rs new file mode 100644 index 0000000..583bf95 --- /dev/null +++ b/src/rw.rs @@ -0,0 +1,53 @@ +/* +use std::pin::Pin; +use std::task::{Context, Poll}; + +struct Xdelta3Reader { + input: R1, + state: ProcessState, + mode: Mode, +} + +impl AsyncRead for Xdelta3Reader +where + R1: Unpin + AsyncRead, + R2: Unpin + AsyncRead, +{ + fn poll_read( + self: Pin<&mut Self>, + cx: &mut Context<'_>, + buf: &mut [u8], + ) -> Poll> { + use binding::xd3_rvalues::*; + + let mode = self.as_ref().mode; + let state = &mut self.as_mut().state; + + loop { + match state.step(mode) { + XD3_INPUT => { + if state.eof { + break; + } + // state.read_input(&mut input).await?; + } + XD3_OUTPUT => { + // state.write_output(&mut output).await?; + } + XD3_GETSRCBLK => { + // state.src_buf.getblk().await; + } + XD3_GOTHEADER | XD3_WINSTART | XD3_WINFINISH => { + // do nothing + } + XD3_TOOFARBACK | XD3_INTERNAL | XD3_INVALID | XD3_INVALID_INPUT | XD3_NOSECOND + | XD3_UNIMPLEMENTED => { + return Poll::Ready(Err(std::io::Error::new(std::io::ErrorKind::Other))); + } + } + } + + unimplemented!(); + } +} +*/ diff --git a/src/stream.rs b/src/stream.rs index db8cd1f..90563b9 100644 --- a/src/stream.rs +++ b/src/stream.rs @@ -1,270 +1,583 @@ use futures_io::*; use futures_util::io::*; -use std::ops::Range; +use std::collections::BTreeMap; +use std::io; use super::binding; -use log::debug; +use log::{debug, trace}; + +pub use binding::xd3_smatch_cfg; #[allow(unused)] const XD3_DEFAULT_WINSIZE: usize = 1 << 23; -const XD3_DEFAULT_SRCWINSZ: usize = 1 << 26; +const XD3_DEFAULT_SRCWINSZ: u64 = 1 << 26; +#[allow(unused)] +const XD3_DEFAULT_ALLOCSIZE: usize = 1 << 14; +#[allow(unused)] +const XD3_DEFAULT_SPREVSZ: usize = 1 << 18; + +struct CacheEntry { + len: usize, + buf: Box<[u8]>, +} struct SrcBuffer { - src: binding::xd3_source, + src: Box, read: R, read_len: usize, eof_known: bool, - block_count: usize, block_offset: usize, - buf: Box<[u8]>, + block_len: usize, + cache: BTreeMap, } +unsafe impl Send for SrcBuffer {} -impl SrcBuffer { - async fn new(mut read: R) -> Option { - let block_count = 64; - let max_winsize = XD3_DEFAULT_SRCWINSZ; +impl SrcBuffer { + fn new(cfg: &Xd3Config, read: R) -> io::Result { + let block_count = 32; + let max_winsize = cfg.source_window_size; let blksize = max_winsize / block_count; - let mut src: binding::xd3_source = unsafe { std::mem::zeroed() }; - src.blksize = blksize as u32; - src.max_winsize = max_winsize as u64; - - let mut buf = Vec::with_capacity(max_winsize); - buf.resize(max_winsize, 0u8); + let cache = BTreeMap::new(); - let read_len = read.read(&mut buf).await.ok()?; - debug!("SrcBuffer::new read_len={}", read_len); + let mut src: Box = Box::new(unsafe { std::mem::zeroed() }); + src.blksize = blksize as u32; + src.max_winsize = max_winsize; - Some(Self { + Ok(Self { src, read, - read_len, - eof_known: read_len != buf.len(), + read_len: 0, + eof_known: false, - block_count, block_offset: 0, - buf: buf.into_boxed_slice(), + block_len: blksize as usize, + cache, }) } +} - async fn fetch(&mut self) -> Option { - let idx = self.block_offset; - let r = self.block_range(idx); - let block = &mut self.buf[r.clone()]; - let read_len = self.read.read(block).await.ok()?; - debug!( - "range={:?}, block_len={}, read_len={}", - r, - block.len(), - read_len - ); +impl SrcBuffer {} - self.block_offset += 1; - self.read_len += read_len; +impl SrcBuffer { + fn fetch(&mut self) -> Result<()> { + let mut buf = if self.cache.len() == self.block_offset + 1 { + let mut key = 0usize; + for (k, _v) in &self.cache { + key = *k; + break; + } + self.cache.remove(&key).unwrap().buf + } else { + let v = vec![0u8; self.block_len]; + v.into_boxed_slice() + }; - Some(read_len != block.len()) - } + let mut read_len = 0; - async fn prepare(&mut self, idx: usize) -> Option<()> { - while !self.eof_known && idx >= self.block_offset + self.block_count { - debug!( - "prepare idx={}, block_offset={}, block_count={}", - idx, self.block_offset, self.block_count - ); - let eof = self.fetch().await?; - if eof { - debug!("eof"); + while read_len != buf.len() { + let len = self.read.read(&mut buf[read_len..])?; + if len == 0 { self.eof_known = true; break; + } else { + read_len += len; } } - Some(()) + + let entry = CacheEntry { len: read_len, buf }; + self.cache.insert(self.block_offset, entry); + self.block_offset += 1; + Ok(()) + } + + fn getblk(&mut self) -> io::Result<()> { + trace!( + "getsrcblk: curblkno={}, getblkno={}", + self.src.curblkno, + self.src.getblkno, + ); + + let blkno = self.src.getblkno as usize; + + let entry = loop { + match self.cache.get_mut(&blkno) { + Some(entry) => break entry, + None => { + if blkno < self.block_offset { + eprintln!("invalid blkno={}, offset={}", blkno, self.block_offset); + for (k, _v) in &self.cache { + eprintln!("key={:?}", k); + } + panic!("invalid blkno"); + } + + self.fetch()?; + continue; + } + } + }; + + let src = &mut self.src; + let buf_len = entry.len; + let data = &entry.buf[..buf_len]; + + src.curblkno = src.getblkno; + src.curblk = data.as_ptr(); + src.onblk = buf_len as u32; + + src.eof_known = self.eof_known as i32; + if !self.eof_known { + src.max_blkno = src.curblkno; + src.onlastblk = src.onblk; + } else { + src.max_blkno = (self.block_offset - 1) as u64; + src.onlastblk = (self.read_len % src.blksize as usize) as u32; + } + Ok(()) } +} - fn block_range(&self, idx: usize) -> Range { - debug!("idx={}, offset={}", idx, self.block_offset); - assert!(idx >= self.block_offset && idx < self.block_offset + self.block_count); +impl SrcBuffer { + async fn fetch_async(&mut self) -> Result<()> { + let mut buf = if self.cache.len() == self.block_offset + 1 { + let mut key = 0usize; + for (k, _v) in &self.cache { + key = *k; + break; + } + self.cache.remove(&key).unwrap().buf + } else { + let v = vec![0u8; self.block_len]; + v.into_boxed_slice() + }; - let idx = idx % self.block_count; - let start = (self.src.blksize as usize) * idx; - let end = (self.src.blksize as usize) * (idx + 1); + let mut read_len = 0; - let start = start.min(self.read_len); - let end = end.min(self.read_len); + while read_len != buf.len() { + let len = self.read.read(&mut buf[read_len..]).await?; + if len == 0 { + self.eof_known = true; + break; + } else { + read_len += len; + } + } - start..end + let entry = CacheEntry { len: read_len, buf }; + self.cache.insert(self.block_offset, entry); + self.block_offset += 1; + Ok(()) } - async fn getblk(&mut self) { - debug!( + async fn getblk_async(&mut self) -> io::Result<()> { + trace!( "getsrcblk: curblkno={}, getblkno={}", - self.src.curblkno, self.src.getblkno, + self.src.curblkno, + self.src.getblkno, ); let blkno = self.src.getblkno as usize; - self.prepare(blkno).await; - let range = self.block_range(blkno); + + let entry = loop { + match self.cache.get_mut(&blkno) { + Some(entry) => break entry, + None => { + if blkno < self.block_offset { + eprintln!("invalid blkno={}, offset={}", blkno, self.block_offset); + for (k, _v) in &self.cache { + eprintln!("key={:?}", k); + } + panic!("invalid blkno"); + } + + self.fetch_async().await?; + continue; + } + } + }; let src = &mut self.src; - let data = &self.buf[range]; + let buf_len = entry.len; + let data = &entry.buf[..buf_len]; src.curblkno = src.getblkno; src.curblk = data.as_ptr(); - src.onblk = data.len() as u32; + src.onblk = buf_len as u32; src.eof_known = self.eof_known as i32; if !self.eof_known { src.max_blkno = src.curblkno; src.onlastblk = src.onblk; } else { - src.max_blkno = (self.block_offset + self.block_count - 1) as u64; + src.max_blkno = (self.block_offset - 1) as u64; src.onlastblk = (self.read_len % src.blksize as usize) as u32; } + Ok(()) + } +} + +#[derive(Debug)] +pub struct Xd3Config { + inner: Box, + + // source config + source_window_size: u64, +} +unsafe impl Send for Xd3Config {} + +impl Xd3Config { + pub fn new() -> Self { + let mut cfg: binding::xd3_config = unsafe { std::mem::zeroed() }; + cfg.winsize = XD3_DEFAULT_WINSIZE as u32; + cfg.sprevsz = XD3_DEFAULT_SPREVSZ as u32; + + let config = Self { + inner: Box::new(cfg), + source_window_size: XD3_DEFAULT_SRCWINSZ, + }; + config + } + + pub fn window_size(mut self, winsize: u32) -> Self { + let inner = self.inner.as_mut(); + inner.winsize = winsize.next_power_of_two(); + self + } + + pub fn sprev_size(mut self, sprevsz: u32) -> Self { + let inner = self.inner.as_mut(); + inner.sprevsz = sprevsz.next_power_of_two(); + self + } + + pub fn source_window_size(mut self, source_window_size: u64) -> Self { + self.source_window_size = source_window_size.next_power_of_two(); + self + } + + pub fn no_compress(mut self, no_compress: bool) -> Self { + let inner = self.inner.as_mut(); + if no_compress { + inner.flags |= binding::xd3_flags::XD3_NOCOMPRESS as i32; + } else { + inner.flags &= !(binding::xd3_flags::XD3_NOCOMPRESS as i32); + } + self + } + + pub fn set_smatch_config(mut self, smatch_cfg: binding::xd3_smatch_cfg) -> Self { + let inner = self.inner.as_mut(); + inner.smatch_cfg = smatch_cfg; + self + } + + pub fn level(mut self, mut level: i32) -> Self { + use binding::xd3_flags::*; + + if level < 0 { + level = 0; + } + if level > 9 { + level = 9; + } + let flags = (self.inner.flags & (!(XD3_COMPLEVEL_MASK as i32))) + | (level << XD3_COMPLEVEL_SHIFT as i32); + + self.inner.flags = flags; + self } } struct Xd3Stream { - inner: binding::xd3_stream, + inner: Box, } impl Xd3Stream { fn new() -> Self { let inner: binding::xd3_stream = unsafe { std::mem::zeroed() }; - return Self { inner }; + return Self { + inner: Box::new(inner), + }; } } impl Drop for Xd3Stream { fn drop(&mut self) { unsafe { - binding::xd3_free_stream(&mut self.inner as *mut _); + binding::xd3_free_stream(self.inner.as_mut() as *mut _); } } } +unsafe impl Send for Xd3Stream {} -pub async fn decode_async(input: R1, src: R2, out: W) -> Option<()> +pub async fn decode_async(input: R1, src: R2, out: W) -> io::Result<()> where R1: AsyncRead + Unpin, R2: AsyncRead + Unpin, W: AsyncWrite + Unpin, { - process_async(Mode::Decode, input, src, out).await + let cfg = Xd3Config::new(); + process_async(cfg, ProcessMode::Decode, input, src, out).await } -pub async fn encode_async(input: R1, src: R2, out: W) -> Option<()> +pub async fn encode_async(input: R1, src: R2, out: W) -> io::Result<()> where R1: AsyncRead + Unpin, R2: AsyncRead + Unpin, W: AsyncWrite + Unpin, { - process_async(Mode::Encode, input, src, out).await + let cfg = Xd3Config::new(); + process_async(cfg, ProcessMode::Encode, input, src, out).await } -enum Mode { +#[derive(Debug, Clone, Copy)] +pub enum ProcessMode { Encode, Decode, } -async fn process_async(mode: Mode, mut input: R1, src: R2, mut out: W) -> Option<()> +pub fn process( + cfg: Xd3Config, + mode: ProcessMode, + mut input: R1, + src: R2, + mut output: W, +) -> io::Result<()> +where + R1: io::Read, + R2: io::Read, + W: io::Write, +{ + let mut state = ProcessState::new(cfg, src)?; + + use binding::xd3_rvalues::*; + + loop { + let res = state.step(mode); + debug!("step: mode={:?}, res={:?}", mode, res); + match res { + XD3_INPUT => { + if state.eof { + break; + } + state.read_input(&mut input)?; + } + XD3_OUTPUT => { + state.write_output(&mut output)?; + } + XD3_GETSRCBLK => { + state.src_buf.getblk()?; + } + XD3_GOTHEADER | XD3_WINSTART | XD3_WINFINISH => { + // do nothing + } + XD3_TOOFARBACK | XD3_INTERNAL | XD3_INVALID | XD3_INVALID_INPUT | XD3_NOSECOND + | XD3_UNIMPLEMENTED => { + return Err(io::Error::new(io::ErrorKind::Other, format!("{:?}", res))); + } + } + } + + output.flush() +} + +pub async fn process_async( + cfg: Xd3Config, + mode: ProcessMode, + mut input: R1, + src: R2, + mut output: W, +) -> io::Result<()> where R1: AsyncRead + Unpin, R2: AsyncRead + Unpin, W: AsyncWrite + Unpin, { - let mut stream = Xd3Stream::new(); - let stream = &mut stream.inner; - let mut cfg: binding::xd3_config = unsafe { std::mem::zeroed() }; - cfg.winsize = XD3_DEFAULT_WINSIZE as u32; + let mut state = ProcessState::new(cfg, src)?; - let mut src_buf = SrcBuffer::new(src).await?; + use binding::xd3_rvalues::*; - let ret = unsafe { binding::xd3_config_stream(stream, &mut cfg) }; - if ret != 0 { - return None; + loop { + let res = state.step(mode); + match res { + XD3_INPUT => { + if state.eof { + break; + } + state.read_input_async(&mut input).await?; + } + XD3_OUTPUT => { + state.write_output_async(&mut output).await?; + } + XD3_GETSRCBLK => { + state.src_buf.getblk_async().await?; + } + XD3_GOTHEADER | XD3_WINSTART | XD3_WINFINISH => { + // do nothing + } + XD3_TOOFARBACK | XD3_INTERNAL | XD3_INVALID | XD3_INVALID_INPUT | XD3_NOSECOND + | XD3_UNIMPLEMENTED => { + return Err(io::Error::new(io::ErrorKind::Other, format!("{:?}", res))); + } + } } - let ret = unsafe { binding::xd3_set_source(stream, &mut src_buf.src) }; - if ret != 0 { - return None; + output.flush().await +} + +struct ProcessState { + #[allow(unused)] + cfg: Xd3Config, + stream: Xd3Stream, + src_buf: SrcBuffer, + + input_buf: Vec, + eof: bool, +} + +impl ProcessState { + fn new(mut cfg: Xd3Config, src: R) -> io::Result { + // log::info!("ProcessState::new config={:?}", cfg); + + let mut stream = Xd3Stream::new(); + let stream0 = stream.inner.as_mut(); + + let ret = unsafe { binding::xd3_config_stream(stream0, cfg.inner.as_mut()) }; + if ret != 0 { + let err = if stream0.msg == std::ptr::null() { + Error::new(io::ErrorKind::Other, "xd3_config_stream: null") + } else { + let msg = unsafe { std::ffi::CStr::from_ptr(stream0.msg) }; + + Error::new( + io::ErrorKind::Other, + format!("xd3_config_stream: {:?}, flags={:0b}", msg, stream0.flags), + ) + }; + return Err(err); + } + + let mut src_buf = SrcBuffer::new(&cfg, src)?; + let ret = unsafe { binding::xd3_set_source(stream0, src_buf.src.as_mut()) }; + if ret != 0 { + return Err(io::Error::new(io::ErrorKind::Other, "xd3_set_source")); + } + + let input_buf_size = stream0.winsize as usize; + trace!("stream.winsize={}", input_buf_size); + let mut input_buf = Vec::with_capacity(input_buf_size); + input_buf.resize(input_buf_size, 0u8); + + Ok(Self { + cfg, + stream, + src_buf, + input_buf, + eof: false, + }) } - let input_buf_size = stream.winsize as usize; - debug!("stream.winsize={}", input_buf_size); - let mut input_buf = Vec::with_capacity(input_buf_size); - input_buf.resize(input_buf_size, 0u8); - let mut eof = false; + fn read_input(&mut self, mut input: R2) -> io::Result<()> + where + R2: io::Read, + { + let input_buf = &mut self.input_buf; - 'outer: while !eof { - let read_size = match input.read(&mut input_buf).await { + let read_size = match input.read(input_buf) { Ok(n) => n, Err(_e) => { debug!("error on read: {:?}", _e); - return None; + return Err(io::Error::new(io::ErrorKind::Other, "xd3: read_input")); } }; debug!("read_size={}", read_size); - if read_size == 0 { - // xd3_set_flags - stream.flags = binding::xd3_flags::XD3_FLUSH as i32; - eof = true; + + { + let stream = self.stream.inner.as_mut(); + if read_size == 0 { + // xd3_set_flags + stream.flags |= binding::xd3_flags::XD3_FLUSH as i32; + self.eof = true; + } + // xd3_avail_input + stream.next_in = input_buf.as_ptr(); + stream.avail_in = read_size as u32; } - // xd3_avail_input - stream.next_in = input_buf.as_ptr(); - stream.avail_in = read_size as u32; + Ok(()) + } - 'inner: loop { - let ret: binding::xd3_rvalues = unsafe { - std::mem::transmute(match mode { - Mode::Encode => binding::xd3_encode_input(stream), - Mode::Decode => binding::xd3_decode_input(stream), - }) - }; + fn write_output(&mut self, mut output: W) -> io::Result<()> + where + W: io::Write, + { + let out_data = { + let stream = self.stream.inner.as_mut(); + unsafe { std::slice::from_raw_parts(stream.next_out, stream.avail_out as usize) } + }; + output.write_all(out_data)?; - if stream.msg != std::ptr::null() { - debug!("ret={:?}, msg={:?}", ret, unsafe { - std::ffi::CStr::from_ptr(stream.msg) - },); - } else { - debug!("ret={:?}", ret,); - } + // xd3_consume_output + self.stream.inner.as_mut().avail_out = 0; + Ok(()) + } - use binding::xd3_rvalues::*; - match ret { - XD3_INPUT => { - continue 'outer; - // - } - XD3_OUTPUT => { - let mut out_data = unsafe { - std::slice::from_raw_parts(stream.next_out, stream.avail_out as usize) - }; - while !out_data.is_empty() { - let n = match out.write(out_data).await { - Ok(n) => n, - Err(_e) => { - debug!("error on write: {:?}", _e); - return None; - } - }; - out_data = &out_data[n..]; - } + fn step(&mut self, mode: ProcessMode) -> binding::xd3_rvalues { + unsafe { + let stream = self.stream.inner.as_mut(); + std::mem::transmute(match mode { + ProcessMode::Encode => binding::xd3_encode_input(stream), + ProcessMode::Decode => binding::xd3_decode_input(stream), + }) + } + } +} - // xd3_consume_output - stream.avail_out = 0; - } - XD3_GETSRCBLK => { - src_buf.getblk().await; - } - XD3_GOTHEADER | XD3_WINSTART | XD3_WINFINISH => { - // do nothing - } - XD3_TOOFARBACK | XD3_INTERNAL | XD3_INVALID | XD3_INVALID_INPUT | XD3_NOSECOND - | XD3_UNIMPLEMENTED => { - return None; - } +impl ProcessState +where + R: AsyncRead + Unpin, +{ + async fn read_input_async(&mut self, mut input: R2) -> io::Result<()> + where + R2: Unpin + AsyncRead, + { + let input_buf = &mut self.input_buf; + + let read_size = match input.read(input_buf).await { + Ok(n) => n, + Err(_e) => { + debug!("error on read: {:?}", _e); + return Err(io::Error::new(io::ErrorKind::Other, "xd3: read_input")); + } + }; + + { + let stream = self.stream.inner.as_mut(); + if read_size == 0 { + // xd3_set_flags + stream.flags |= binding::xd3_flags::XD3_FLUSH as i32; + self.eof = true; } + // xd3_avail_input + stream.next_in = input_buf.as_ptr(); + stream.avail_in = read_size as u32; } + + Ok(()) } - out.flush().await.ok() + async fn write_output_async(&mut self, mut output: W) -> io::Result<()> + where + W: Unpin + AsyncWrite, + { + let out_data = { + let stream = self.stream.inner.as_mut(); + unsafe { std::slice::from_raw_parts(stream.next_out, stream.avail_out as usize) } + }; + output.write_all(out_data).await?; + + // xd3_consume_output + self.stream.inner.as_mut().avail_out = 0; + Ok(()) + } } diff --git a/ws b/ws new file mode 120000 index 0000000..3783d31 --- /dev/null +++ b/ws @@ -0,0 +1 @@ +/home/jihyun/r/g/open-vcdiff/build/ws/ \ No newline at end of file